home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / yesnoformat.cfm < prev   
Encoding:
Text File  |  2001-06-13  |  594 b   |  26 lines

  1. <!--- This example shows the YesNoFormat --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>YesNoFormat Example</TITLE>
  5. </HEAD>
  6.  
  7. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  8. <BODY  bgcolor="#FFFFD5">
  9. <H3>YesNoFormat Example</H3>
  10.  
  11. <P>The YesNoFormat function returns all non-zero values
  12. as "YES" and zero values as "NO".
  13.  
  14. <CFOUTPUT>
  15. <UL>
  16.     <LI>YesNoFormat(1):    #YesNoFormat(1)#    
  17.     <LI>YesNoFormat(0):    #YesNoFormat(0)#    
  18.     <LI>YesNoFormat("1123"):    #YesNoFormat("1123")#    
  19.     <LI>YesNoFormat("No"):    #YesNoFormat("No")#    
  20.     <LI>YesNoFormat(TRUE):    #YesNoFormat(TRUE)#    
  21. </UL>    
  22. </CFOUTPUT>
  23.  
  24. </BODY>
  25. </HTML>       
  26.